vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Add-On Releases - BF-Easy Pages for vBulletin4 (https://vborg.vbsupport.ru/showthread.php?t=232207)

DarkStaRX 10-25-2011 09:27 PM

It saves only pages with <= 11 usergroup rights.. all other usergroups will be unchecked by saving the page.. please help

//Fixed it

1. Open product-bfeasypages-v1.3.9.xml
2. Search number "30"
3. Change to 200 or other high number (only for allowed counts in database)
4. Save the file, deinstall and install the product new
5. Finished!

Crotan 11-16-2011 02:52 PM

Anybody got a working demo with 4.1.7+ willing to share? The original linked board no longer exists

AdrianH 11-16-2011 03:04 PM

Quote:

Originally Posted by Crotan (Post 2268549)
Anybody got a working demo with 4.1.7+ willing to share? The original linked board no longer exists


Try the authors site vb 4.1.8 http://bilgivadisi.com/sayfalar.html

Jakub03 01-02-2012 02:41 AM

Keep up the good work! great mod ;) works awesome on 4.1.9

inigo 01-04-2012 08:49 AM

Quote:

Originally Posted by byalik (Post 2256994)
Why does the CRR rewrite the urls as "page" instead of the actual page name

Because the coders have to add the title in the URL in the mod, otherwise there is no way to use CRR to have the title in the url.

I think this is a very important upgrade,

I hope they will update this mod with page title in the URL,

Merenguista 01-06-2012 02:30 PM

Hi gays

I get this parse error :

Parse error: syntax error, unexpected '<' in /home/public_html/forum/pages.php(108) : eval()'d code on line 1

any solution ?

1005467401 01-08-2012 06:05 PM

Groups may view the page
Groups may see

It only lets me chose 11 Groups. i have over 20 groups...

nextstream 01-24-2012 01:01 PM

i also facing the same problem.. it only allow to chose 11 :(
any way to go around this?

nextstream 01-24-2012 01:24 PM

//Fixed for limit to 11 groups

1. Open product-bfeasypages-v1.3.9.xml
2. Search number "30"
3. Change to 200 or other high number (only for allowed counts in database)
4. Save the file, deinstall and install the product new
5. Finished!

nextstream 01-24-2012 03:31 PM

1 Attachment(s)
good mod

just wondering
why my page title has "TAG" continue with page title

https://vborg.vbsupport.ru/attachmen...1&d=1327422616

https://vborg.vbsupport.ru/attachmen...1&d=1327422616

nextstream 01-25-2012 08:54 AM

//fixed fot Tag

Template bfeasypages:

HTML Code:
HTML Code:

<title>{vb:rawphrase tags} - {vb:raw pl.title}</title>
replace:

HTML Code:
HTML Code:

<title>{vb:raw vboptions.bbtitle} - {vb:raw pl.title}</title>

tlwwolfseye 02-21-2012 03:50 PM

Is there a 3.8.x Version of this Mod ? Would love to add this to an older vB Forum site I am running. This Plugin is awesome. ! :)

Thanks @ Dev.

ahobilam 03-30-2012 01:32 PM

It is not showing anything after installation.
So uninstalled.

dtommy79 04-04-2012 07:33 PM

Hi,

I'm trying to use this code in a php page, but for some reason the output is not displayed:

PHP Code:

<?

include 'script/config.php'; 
?>
<div id="hold">

<h1><a href="/"><img src="script/logo.png"></a></h1><br>

<b>Enter a word below:</b><br>

<p id="inputp"><input type="text" id="input" class="input"/></p>
<div id="result">

<p><font style="font-size: 9pt">Dictionary Script - Buy This Script At: 
</font> 
<a target="_blank" href="http://www.websitescripts.org/">
<font style="font-size: 9pt" color="#0000FF">WebsiteScripts.org</font></a></p></div>

This is how I used it:

PHP Code:

include 'script/config.php'

$output .=
<div id="
hold">

<h1><a href='/'><img src='script/logo.png'></a></h1><br>

<b>Enter a word below:</b><br>

<p id='inputp'><input type='text' id='input' class='input'/></p>
<div id='result'>

<p><font style='font-size: 9pt'>Dictionary Script - Buy This Script At: 
</font> 
<a target='_blank' href='http://www.websitescripts.org/'>
<font style='font-size: 9pt' color='#0000FF'>WebsiteScripts.org</font></a></p></div>

"


I'm getting this error:

Code:

Parse error:  syntax error, unexpected T_STRING in /home/******/learnhungarianonline.com/pages.php(108) : eval()'d code on line 4
What am I doing wrong?

Thanks

EDIT: never mind, I've made a mistake with the double quote

KGodel 04-27-2012 08:03 PM

Hey Zab! I am using this to make a roster in PHP, however all of my output is appearing above the header and not in the actual page box. Any advice?

Nevermind. I was able to edit the pages.php code and use output control functions to capture the output and place it properly.


Quote:

Originally Posted by SpikedRocker (Post 2250355)
This mod is broke beyond belief. I have a parse error that I can resolve when just having the content be print 'Hello World'; Even then it is placing this content above my header. I would push that this mod be graveyarded.

This was the same issue I had. Fix below:

In pages.php find:
PHP Code:

        try
        {
            eval(
$pl['content']);
            
$view->output $output;
            
$content $view->output;
        } 

Replace With:
PHP Code:

        try
        {
            
ob_start();
            eval(
$pl['content']);
            
$out1 ob_get_contents();
            
ob_end_clean();
            
$content $out1;
        } 


Chadi 06-08-2012 12:27 PM

1 Attachment(s)
Small problem, using this code

Quote:

<br />
<table style="width: 100%">
<tr>
<td align="center">
<script type="text/javascript" src="http://ebible.com/assets/ministry/ebible.embed.js?corporate_id=362"></script>
</td>
</tr>
</table>
This is how it appears, cut off in the footer area.

gpinjason 06-12-2012 11:56 AM

is this working well with 4.2.0?

onealien 07-01-2012 03:30 PM

^^^^cosign that ?....

MichaelEmilio 07-09-2012 03:26 PM

I'm having the same issue as in this post: https://vborg.vbsupport.ru/showpost....&postcount=232

I'm getting these error emails:

Code:

Database error in vBulletin 4.2.0:

Invalid SQL:
SELECT *
            FROM bfeasypages
            WHERE
            status=1 and
            publish=1;

MySQL Error  : Table 'mydomainname.bfeasypages' doesn't exist
Error Number  : 1146
Request Date  : Sunday, July 8th 2012 @ 03:45:29 PM
Error Date    : Sunday, July 8th 2012 @ 03:45:29 PM
Script        : http://mydomainname.com/pages.php
Referrer      :
Username      : Unregistered
Classname    : vB_Database
MySQL Version :

bfeasypages is uninstalled yet I'm getting these emails.

How can I fix this issue?

Shadow 07-09-2012 05:24 PM

Quote:

Originally Posted by MichaelEmilio (Post 2346387)
I'm having the same issue as in this post: https://vborg.vbsupport.ru/showpost....&postcount=232

I'm getting these error emails:

Code:

Database error in vBulletin 4.2.0:

Invalid SQL:
SELECT *
            FROM bfeasypages
            WHERE
            status=1 and
            publish=1;

MySQL Error  : Table 'mydomainname.bfeasypages' doesn't exist
Error Number  : 1146
Request Date  : Sunday, July 8th 2012 @ 03:45:29 PM
Error Date    : Sunday, July 8th 2012 @ 03:45:29 PM
Script        : http://mydomainname.com/pages.php
Referrer      :
Username      : Unregistered
Classname    : vB_Database
MySQL Version :

bfeasypages is uninstalled yet I'm getting these emails.

How can I fix this issue?

Remove all files related to this modification most specifically /forumroot/pages.php. That's the one giving you the error.

imk 09-03-2012 04:11 PM

Working but can i make it friendly Url?

greenpk2 11-25-2012 01:56 PM

What is happening?? After using your script i cant login to my page. It says i need to refresh later. Both website and admincp doesnt work now!!

trackpads 11-25-2012 03:25 PM

Quote:

Originally Posted by greenpk2 (Post 2384902)
What is happening?? After using your script i cant login to my page. It says i need to refresh later. Both website and admincp doesnt work now!!

What is wrong with you man? Use at your own risk. And if you dont know how to get back in after this happens you shouldnt be on this site at all.

OlijO 11-25-2012 06:29 PM

Quote:

Originally Posted by greenpk2 (Post 2384902)
What is happening?? After using your script i cant login to my page. It says i need to refresh later. Both website and admincp doesnt work now!!

Installed on my side on a vB4.2 without any problem.
I suppose you made a backup before testing the mod like a professional no ?

greenpk2 11-28-2012 01:36 PM

I did yea, had to re-install it. When visiting the site, the domain-name didn't work anymore, so had to re-install vBulletin. Wierd...

Impromptu 11-29-2012 03:33 AM

Works fine for me on VB 4.2.

Mr.Lucky 12-30-2012 11:42 PM

Installed on 4.2.0, patch 3, works great and does exactly what I was hoping, thanks!

X tee 02-20-2013 02:59 PM

When inserting a java applet into an HTML page the modification makes the application box compressed. I've tried setting custom height and widths for the application (200% * 200%) and the application box is still showing up as compressed.

hohleweg 02-25-2014 04:23 PM

Hey
The links ar all "nofollow" can i chanche it in "follow"
Thanks.
Greetings Joachim

aaronhaul 03-28-2014 07:29 AM

Hello friends,

Has any body tried this hack for vB v4.2.2 PL 1?

hohleweg 03-28-2014 07:40 AM

Hi
Yes it works
look at http://www.buggy-forum.de/partnerseite.html
Greetings Jo

RichieBoy67 04-04-2014 09:45 AM

I have been using this for years and it still works well on 4.2.2.

One question I have is that my new pages always are titles Tags - whatever I name the page - How can I change the "Tags" title? I could probably change a phrase but is there some other way? I mean is this built like this or is something wrong with my set up?

##Never mind - I will just edit the template

ahobilam 04-04-2014 03:42 PM

Installed and Voted.
Is there a possibility to add the following two important things.
1. Listed in activity stream.
2. Google Ads should be displayed in this pages.
Please look in to it.
Thanks in advance.

RichieBoy67 04-04-2014 03:56 PM

Quote:

Originally Posted by ahobilam (Post 2491480)
Installed and Voted.
Is there a possibility to add the following two important things.
1. Listed in activity stream.
2. Google Ads should be displayed in this pages.
Please look in to it.
Thanks in advance.

I'm not sure what you mean about the activity stream but yes you can easily ad adsense.

Lon 04-07-2014 04:47 AM

Getting:
Parse error: syntax error, unexpected end of file in /home2/viral/public_html/bumpswonderland.com/forums/pages.php(110) : eval()'d code on line 1

When creating a php page.

Referencing: eval($pl['content']);

Doesn't show the php content at all.

K4GAP 04-07-2014 06:18 AM

Quote:

Originally Posted by RichieBoy67 (Post 2491431)
I have been using this for years and it still works well on 4.2.2.

One question I have is that my new pages always are titles Tags - whatever I name the page - How can I change the "Tags" title? I could probably change a phrase but is there some other way? I mean is this built like this or is something wrong with my set up?

##Never mind - I will just edit the template

Richie, is this mod/addon really necessary for use with vb4.2.2 ?
I'm debating on whether or not I need this to add pages.

KGodel 05-05-2014 06:22 PM

I'm having issue using require, include, get_file_contents, and other such functions.

Edit: Fixed it!

dany_danay 05-09-2014 10:08 AM

KGodel how do you fixed?

gundamz 07-03-2014 11:58 PM

i don't under this part.

Code:

'^pages\.php$' => 'pages.html'
'^pages\.php\?pageid=(\d+)$'=>'page-$1.html'


can anyone share their seo code you put in .htaccess ?

RichieBoy67 09-25-2014 08:48 PM

Quote:

Originally Posted by K4GAP (Post 2491896)
Richie, is this mod/addon really necessary for use with vb4.2.2 ?
I'm debating on whether or not I need this to add pages.

I never saw this. Sorry friend.

It isn't really necessary because you can add pages using other methods or the cms but it does make adding basic html pages very simple. i use it for error pages, privacy notice, that type of thing.


All times are GMT. The time now is 12:41 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01720 seconds
  • Memory Usage 1,839KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (2)bbcode_html_printable
  • (4)bbcode_php_printable
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete